home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-02-21 | 1.5 KB | 59 lines | [TEXT/MSWD] |
- !ONLINE DIALING SCRIPT Version 1.1 January 21, 1995
-
-
- !©1995 by John Hayes (jhayes@world.std.com). This
- !script may be freely distributed as long as this copyright notice is
- !not removed.
-
- !***********************************************************************
-
- !See the "README" file in the "OnLine Scripts" folder for instructions
- !for the use of this script.
-
- !***********************************************************************
-
-
- !ORIGINATE MODULE
-
- !This script runs when you click on the "Connect" button. At the end of
- !this module, InterSLIP continues with the OnLine Gateway Script.
-
-
- @ORIGINATE
- note "connecting to host"
- serreset 57600 0 8 1
- pause 30
- exit 0
-
- !CHANGE ABOVE, IF NECESSARY - SEE README FOR INSTRUCTIONS
- !The speed in "serreset" must be the same serial port speed you have set
- !in InterSLIP and your communications program (Z-Term, Microphone, etc).
- !If your modem will not work at 57600, change the setting in Z-Term, etc
- !to 19200 and change the 57600 above to 19200. Do not use serial port
- !settings of 38400, 28800 or 14400, since serreset will not recognize !them.
-
- !*********************************************************************
-
- !HANGUP MODULE
-
- !This script runs when you click on the "Disconnect" button.
-
- @HANGUP
- @LABEL 51
- pause 1
- note "exiting TIA"
- pause 1
-
- !sends 5 ASCII "03" characters during 2.1
- !seconds to exit from TIA,
-
- write "\03\03\03"
- pause 21
- write "\03\03"
- pause 45
- note "please close InterSLIP/open comm pgrm".
- pause 30
- note "Idle"
- pause 10
- exit 0
-